home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000251_news@columbia.edu_Wed Nov 23 16:46:59 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02074
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 23 Nov 1994 11:47:15 -0500
  3. Received: by apakabar.cc.columbia.edu id AA21927
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 23 Nov 1994 11:47:14 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Alternate character set
  9. Date: 23 Nov 1994 16:46:59 GMT
  10. Organization: Columbia University
  11. Lines: 33
  12. Message-Id: <3avrm3$lck@apakabar.cc.columbia.edu>
  13. References: <1994Nov21.180341.10495@ivax> <1994Nov22.222550.33619@cc.usu.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <1994Nov22.222550.33619@cc.usu.edu>,
  18. Joe Doupnik <jrd@cc.usu.edu> wrote:
  19. >In article <1994Nov21.180341.10495@ivax>,
  20. >rjfortho@indyunix.iupui.edu () writes: 
  21. >> I am using MS-Kermit to dial in to an IBM 3090 mainframe, through a protocol
  22. >> converter.  Periodically, I will get line noise which causes Kermit to
  23. >> switch character sets on me.
  24. >Those would be control codes SI and SO which change character
  25. >sets on you. A real VT100 will do exactly the same. Use VT320 where
  26. >these two codes switch amongst the same character sets most of the time...
  27. >
  28. It is a fundamental limitation of terminal/host communication that noise
  29. can be generated on the communication channel that looks to the terminal
  30. exactly like a legitimate control function.  Control functions can do
  31. anything at all -- not just switch character sets.  You can avoid this
  32. situation by setting up an error-corrected terminal session via SLIP, or
  33. making a network connection instead of a serial connection, etc.  You can
  34. minimize (but no eliminate) the risks of this on a dialup connection by
  35. using an error-correcting modem and hardware flow control.
  36.  
  37. When you can't avoid a noisy connection, and you only care about ASCII
  38. characters (i.e. you don't ever want to see accented letters, etc), then
  39. you can designate ASCII to all four of Kermit's terminal character-set
  40. tables as follows:
  41.  
  42.   SET TERMINAL CHARACTER-SET ASCII G0 G1 G2 G3
  43.  
  44. Consult "Using MS-DOS Kermit", Appendix II, "Terminal Character Set
  45. Terminology and Mechanics", pp.289-290, for details.  For further details,
  46. read ISO standards 4873 and 2022, or a VT220 or VT320 Programmer Reference
  47. Manual.
  48.  
  49. - Frank